crypto/tls.clientHelloMsg.encryptedClientHello (field)

9 uses

	crypto/tls (current package)
		ech.go#L222: 	outer.encryptedClientHello, err = generateOuterECHExt(ech.config.ConfigID, ech.kdfID, ech.aeadID, encapKey, make([]byte, encryptedLen))
		ech.go#L235: 	outer.encryptedClientHello, err = generateOuterECHExt(ech.config.ConfigID, ech.kdfID, ech.aeadID, encapKey, encryptedInner)
		handshake_client.go#L214: 		hello.encryptedClientHello = []byte{1} // indicate inner hello
		handshake_client.go#L385: 	echInner := bytes.Equal(hello.encryptedClientHello, []byte{1})
		handshake_messages.go#L99: 	encryptedClientHello             []byte
		handshake_messages.go#L163: 	if len(m.encryptedClientHello) > 0 {
		handshake_messages.go#L166: 			exts.AddBytes(m.encryptedClientHello)
		handshake_messages.go#L708: 		encryptedClientHello:             slices.Clone(m.encryptedClientHello),